From 8fc02537fad6cf50539e3f11bb999e5df65ec7c1 Mon Sep 17 00:00:00 2001 From: "cl349@firebug.cl.cam.ac.uk" Date: Wed, 4 May 2005 12:49:52 +0000 Subject: [PATCH] bitkeeper revision 1.1389.5.9 (4278c4f0VAeQPVGBi1M71vwTpeJ-nQ) acpi_scan_rsdp's parameters are (start, len) and not (start, end). Signed-off-by: Christian Limpach --- linux-2.6.11-xen-sparse/arch/xen/i386/kernel/acpi/boot.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/linux-2.6.11-xen-sparse/arch/xen/i386/kernel/acpi/boot.c b/linux-2.6.11-xen-sparse/arch/xen/i386/kernel/acpi/boot.c index 49b6f8865f..46e8585c40 100644 --- a/linux-2.6.11-xen-sparse/arch/xen/i386/kernel/acpi/boot.c +++ b/linux-2.6.11-xen-sparse/arch/xen/i386/kernel/acpi/boot.c @@ -656,7 +656,7 @@ acpi_find_rsdp (void) */ rsdp_phys = acpi_scan_rsdp (0, 0x400); if (!rsdp_phys) - rsdp_phys = acpi_scan_rsdp (0xE0000, 0xFFFFF); + rsdp_phys = acpi_scan_rsdp (0xE0000, 0x20000); __set_fixmap_ma(FIX_ACPI_RSDP_PAGE, rsdp_phys, PAGE_KERNEL); -- 2.30.2